home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / gui / pref / gensearchable.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  941b  |  29 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. from glob import glob
  5. from util import backtick
  6.  
  7. def main():
  8.     print HEADER
  9.     for f in glob('pg_*.py'):
  10.         module_name = f[3:-3]
  11.         print '%s = [' % module_name
  12.         for line in backtick('xgettext -D. -LPython --no-wrap --no-location -o- ' + f).split('\n'):
  13.             if line.startswith('msgid '):
  14.                 line = line.strip()
  15.                 s = line[7:-1]
  16.                 if s:
  17.                     print '    _("' + s.replace('&', '') + '"),'
  18.                 
  19.             s
  20.         
  21.         print ']'
  22.         print 
  23.     
  24.  
  25. HEADER = '#\n# DO NOT EDIT\n#\n# this file is generated by running gensearchable.py in this directory\n#\n'
  26. if __name__ == '__main__':
  27.     main()
  28.  
  29.